036ef9672a367d175751fd7834df7bebabbbd031,TileEntity/Plants/TileEntityCrystalPlant.java,TileEntityCrystalPlant,makeRipe,#,64

Before Change



	public void makeRipe() {
		this.grow();
		this.grow();
	}

	public void updateLight() {

After Change



	public void makeRipe() {
		while(!this.canHarvest())
			this.grow();
	}

	public void updateLight() {